home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / lcppb.zip / LCPPANS.ZIP / DOGCAT.CPP < prev    next >
C/C++ Source or Header  |  1991-07-08  |  363b  |  17 lines

  1. // dogcat.cpp -- Display a string with embedded quotes
  2.  
  3. #include <iostream.h>
  4.  
  5. main()
  6. {
  7.   cout << "\"It's raining \"dogs and cats\" in here!\"";
  8. }
  9.  
  10.  
  11. // Copyright (c) 1990 by Tom Swan. All rights reserved
  12. // Revision 1.00    Date: 10/23/1990   Time: 04:01 pm
  13.  
  14. // Revision 1.01    Date: 07/08/1991   Time: 05:41 pm
  15. // Converted for Borland C++ 2.0
  16.  
  17.